home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / xrects.2 < prev    next >
Text File  |  1999-09-16  |  798b  |  67 lines

  1.  
  2.  
  3.  
  4. xrects(2)                      Scilab Function                      xrects(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   xrects - draw a set of rectangles
  13.  
  14. CALLING SEQUENCE
  15.   []=xrects(rects,[fill])
  16.  
  17. PARAMETERS
  18.  
  19.   rects          : matrix of size (4,n)
  20.  
  21.   fill           : vector of size n.
  22.  
  23. DESCRIPTION
  24.   draws or fills a set of rectangle. each column of rects describes a rectan-
  25.   gle ( Upper Left point, width, height)
  26.  
  27.   rects= [ x,y,w,h ; x,y,w,h ;.....] ' fill(n) gives the pattern to use for
  28.   filling the rectangle n.
  29.  
  30.   if fill(n) >= wid +1, the rectangles are drawn using the current line style
  31.   but not filled. This is also the default value if fill is not given.  wid
  32.   stands for the id of the white pattern which can be obtained by the command
  33.   xget("white").
  34.  
  35. AUTHOR
  36.   J.Ph.C..
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.